
/*SCROLLABLE_HORIZONTAL.*/
.scrollable {
	position:relative;
	overflow:hidden;
	width:652px;
	height:120px;
}
.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}
.items div {
	padding-top:5px;
	float:left;
	width:652px;
	height:120px;
	background-color:#E1F4FD;
}
/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:600px;
	height:400px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* SCROLLABLE BUTTONS */

.scrollable {
	float:left;	
}
/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../../images/about/arrows.jpg) no-repeat;
	display:block;
	width:25px;
	height:61px;
	float:left;
	margin:10px 35px ;
	cursor:pointer;
	font-size:1px;
}
/* right */
a.right { 
	background-position: -25px 0px; 
	clear:right; 
	margin-right: 0px;
}
a.right:hover { 
	background-position:-25px -61px; 
}
a.right:active { 
	background-position:-25px 0px; 
} 


/* left */
a.left { 
	margin-left: 0px; 
} 
a.left:hover { 
	background-position: 0 -61px; 
}
a.left:active { 
	background-position:0px 0; 
}

/* disabled navigational button */
a.disabled {
	visibility:hidden;		
} 	

/* SCROLLABLE NAVIGATOR */

.navi {
	margin-left:350px;
	width:250px;
	height:8px;
	padding-top:5px;
}
/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:12px;
	background:url(../../images/navigator.jpg) 0 0 no-repeat;
	display:block;
	font-size:1px;
}
/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}
/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}




